home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / setpgrp.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  1KB  |  56 lines

  1. /* 
  2.  * setpgrp.c --
  3.  *
  4.  *    Procedure to map from Unix setpgrp system call to Sprite.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: setpgrp.c,v 1.1 88/06/19 14:31:57 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "compatInt.h"
  16. #include "proc.h"
  17.  
  18.  
  19. /*
  20.  *----------------------------------------------------------------------
  21.  *
  22.  * setpgrp --
  23.  *
  24.  *    Procedure to map from Unix setpgrp system call to Sprite 
  25.  *    Proc_SetFamilyID. 
  26.  *
  27.  * Results:
  28.  *    UNIX_ERROR is returned upon error, with the actual error code
  29.  *    stored in errno.  Otherwise UNIX_SUCCESS is returned.
  30.  *
  31.  * Side effects:
  32.  *    None.
  33.  *
  34.  *----------------------------------------------------------------------
  35.  */
  36.  
  37. int
  38. setpgrp(pid, pgrp)
  39.     int pid;            /* Process to set the pid for. */
  40.     int pgrp;            /* Name of group. */
  41. {
  42.     ReturnStatus status;    /* result returned by Proc_SetFamilyID */
  43.  
  44.     if (pid == 0) {
  45.     pid = PROC_MY_PID;
  46.     }
  47.  
  48.     status = Proc_SetFamilyID(pid, pgrp);
  49.     if (status != SUCCESS) {
  50.     errno = Compat_MapCode(status);
  51.     return(UNIX_ERROR);
  52.     } else {
  53.     return(UNIX_SUCCESS);
  54.     }
  55. }
  56.